home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <vcl\vcl.h>
- #pragma hdrstop
-
- #include "Hallo4.h"
- //---------------------------------------------------------------------------
- #pragma resource "*.dfm"
- TForm1 *Form1;
- //---------------------------------------------------------------------------
- __fastcall TForm1::TForm1(TComponent* Owner)
- : TForm(Owner)
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::ListBox1Click(TObject *Sender)
- {
- if (ListBox1->ItemIndex == 0)
- Application->MessageBox ("Das ist ja toll!", "", 4+48);
- if (ListBox1->ItemIndex == 1)
- Application->MessageBox ("Das freut mich!", "", 4+48);
- if (ListBox1->ItemIndex == 2)
- Application->MessageBox ("Das geht ja noch!", "", 4+32);
- if (ListBox1->ItemIndex == 3)
- Application->MessageBox ("Das tut mir leid!", "", 4+48);
- if (ListBox1->ItemIndex == 4)
- Application->MessageBox ("Das ist ja schlimm!", "", 4+48);
- if (ListBox1->ItemIndex == 5)
- Application->MessageBox ("Wenn du meinst...", "", 1+16);
- }
- //---------------------------------------------------------------------------